home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / util / moni / Scout-src.lha / netinclude / getopt.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-02-13  |  483 b   |  19 lines

  1. #ifndef GETOPT_H
  2. #define GETOPT_H \
  3.        "$Id: getopt.h,v 1.1.1.1 2001/11/26 22:21:13 tboeckel Exp $"
  4. /*
  5.  *      Prototypes and declarations for getopt() package
  6.  *
  7.  *      Copyright © 1994 AmiTCP/IP Group, 
  8.  *                       Network Solutions Development Inc.
  9.  *                       All rights reserved.
  10.  */
  11.  
  12. extern int opterr;
  13. extern int optind;
  14. extern int optopt;
  15. extern char *optarg;
  16. int getopt(int argc, char * const argv[], char const *opts);
  17.  
  18. #endif /* GETOPT_H */
  19.